crypto/hmac.hmac.inner (field)

12 uses

	crypto/hmac (current package)
		hmac.go#L47: 	outer, inner hash.Hash
		hmac.go#L57: 	in = h.inner.Sum(in)
		hmac.go#L72: 	return h.inner.Write(p)
		hmac.go#L76: func (h *hmac) BlockSize() int { return h.inner.BlockSize() }
		hmac.go#L80: 		if err := h.inner.(marshalable).UnmarshalBinary(h.ipad); err != nil {
		hmac.go#L86: 	h.inner.Reset()
		hmac.go#L87: 	h.inner.Write(h.ipad)
		hmac.go#L95: 	marshalableInner, innerOK := h.inner.(marshalable)
		hmac.go#L131: 	hm.inner = h()
		hmac.go#L138: 		if hm.outer == hm.inner {
		hmac.go#L145: 	blocksize := hm.inner.BlockSize()
		hmac.go#L161: 	hm.inner.Write(hm.ipad)